Hello, |
Re: copy link properties in attributes I have a module with incoming links, where the links made directly. Now I will get some properties in my attributes as base to recreate this links with "link by attribute". So I need the properties of the link like - module name where the link started - object identifier from the link What are the names of these link attributes (like f.e. l."Created On")? Thanks in advance Ralf |
Re: copy link properties in attributes Neuber - Wed Oct 20 02:50:45 EDT 2010
Let me see if I've got this straight. You want to gather information about incoming links, store that information in some text attribute, and be able to read that information later for use by link-by-attribute. ModuleName_ mSource = source(lnk) Object oSource = source(lnk) if (null mSource or null oSrouce) continue string NameModFull = fullName(mSource) string SourceID = identifier(oSource)
string LinkCreatedBy = lnk."Created By"
string Type = lnk."LinkType" if (null Type) lnk."LinkType" = "Unknown"
|